-
The
DingiLocationManagerprotocol defines a set of methods that a class must implement in order to serve as the location manager of anDingiMapView. A location manager is responsible for notifying the map view about location-related events, such as a change in the user’s location. This protocol is similar to the Core Location framework’sCLLocationManagerclass, but your implementation does not need to be based onCLLocationManager.To receive location updates from an object that conforms to the
See moreDingiLocationManagerprotocol, use the optional methods available in theDingiLocationManagerDelegateprotocol.Declaration
Objective-C
@protocol DingiLocationManager <NSObject>Swift
protocol DingiLocationManager : NSObjectProtocol -
The
See moreDingiLocationManagerDelegateprotocol defines a set of methods that respond to location updates from anDingiLocationManagerobject that is serving as the location manager of anDingiMapView.Declaration
Objective-C
@protocol DingiLocationManagerDelegate <NSObject>Swift
protocol DingiLocationManagerDelegate : NSObjectProtocol
Location Updates Reference